home *** CD-ROM | disk | FTP | other *** search
/ Just Call Me Internet / Just Call Me Internet.iso / prog / atari / c / stut_src / arbkeywd.h < prev    next >
C/C++ Source or Header  |  1996-06-04  |  1KB  |  42 lines

  1. /*
  2.  * Arbo_Keyword_Public.h
  3.  */
  4.  
  5. #ifndef _ARBKEYWD_H_ 
  6. #define _ARBKEYWD_H_
  7.  
  8. /*
  9.  * Actions suite … un mot clef:
  10.  */
  11.     #define        ACTION_NONE                0
  12.     #define        ACTION_CLS                100        /* Efface ‚cran */
  13.     #define        ACTION_FULLCLS            102        /* Efface ‚cran + status line */
  14.     #define        ACTION_GETTIME            200        /* Donne date */
  15.     #define        ACTION_SETTIME            250        /* Fixe date */
  16.     #define        ACTION_2BOMBES            902        /* Plantage 2 bombes */
  17.     #define        ACTION_DEL_RECORD        1000        /* Effacement d'un record */
  18.  
  19.  
  20. /*
  21.  * KEYWORD_LIST
  22.  *
  23.  * History:
  24.  * --------
  25.  * 18.05.94: Created by fplanque
  26.  * 29.03.95: Extended
  27.  */
  28. typedef
  29.     struct        keyword_linklist
  30.     {
  31.         struct keyword_linklist    *    next;                /* Pointeur sur elt suivant */
  32.         int                                n_Event;            /* Code de l'‚venement */
  33.         int                                n_Action1;        /* No de l'action … entreprendre */
  34.         int                                n_Action2;        /* No d'une autre action … entreprendre */
  35.         UINT                                u_flags;
  36.         char                            *    psz_KeyWord;    /* Ptr sur mot clef */
  37.         char                            *    psz_DestPage;    /* Ptr sur nom page destination */
  38.     }
  39.     KEYWORD_LIST;
  40.  
  41.  
  42. #endif